[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]
Assembly: Calculator (Calculator)
This method multiplies two integers.
Namespace: Calculator
Assembly: Calculator (Calculator)
Syntax
| Visual Basic (Declaration) |
|---|
Public Function Multiply ( _ a As Integer, _ b As Integer _ ) As Integer |
| C# |
|---|
public int Multiply ( int a, int b ) |
| C++ |
|---|
public: int Multiply ( int a, int b ) |
Parameters
- a (System.Int32)
- The first number
- b (System.Int32)
- The second number
Return Value
An integer representing multiplication of a and b| Multiply(Int32, Int32) | Public method |